summaryrefslogtreecommitdiffstats
path: root/src/pages/article/[slug].tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-07 16:34:55 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-07 19:04:13 +0100
commita385d89dfd6312f2255d1343cea3f63375ce5b39 (patch)
treecad32cfd21e188eb1c145d0fda173da7f353b591 /src/pages/article/[slug].tsx
parent8efb9219116a6c665d1059d3218c9405c616e404 (diff)
chore: improve comment section
I also adjust styles for all forms and primary buttons.
Diffstat (limited to 'src/pages/article/[slug].tsx')
-rw-r--r--src/pages/article/[slug].tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/pages/article/[slug].tsx b/src/pages/article/[slug].tsx
index e906d12..889af43 100644
--- a/src/pages/article/[slug].tsx
+++ b/src/pages/article/[slug].tsx
@@ -72,9 +72,7 @@ const SingleArticle: NextPageWithLayout<ArticleProps> = ({ post }) => {
<Sharing title={title} excerpt={intro} />
</aside>
<section className={styles.comments}>
- <h2>{t`Comments`}</h2>
<CommentsList comments={comments} />
- <h2>{t`Leave a comment`}</h2>
<CommentForm articleId={post.databaseId} />
</section>
</article>